c8fe023c2be4ab4bb6dc68ade1b0b4fc3209a773,OsmAnd/src/net/osmand/plus/audionotes/AudioVideoNotesPlugin.java,Recording,updatePhotoInformation,#number#number#number#,153
Before Change
exif.setAttribute(ExifInterface.TAG_GPS_LATITUDE, convertDegToExifRational(lat));
exif.setAttribute(ExifInterface.TAG_GPS_LATITUDE_REF, lat > 0 ?"N" :"S");
exif.setAttribute(ExifInterface.TAG_GPS_LONGITUDE, convertDegToExifRational(lon));
exif.setAttribute(ExifInterface.TAG_GPS_LONGITUDE_REF, lon > 0?"E" : "W");
if(!Double.isNaN(rot)){
exif.setAttribute("GPSImgDirectionRef", "T"); //true north
String rotString = (int) (rot * 100.0) + "/100";
After Change
setAttribute.invoke(exInstance,"GPSLatitude", convertDegToExifRational(lat));
setAttribute.invoke(exInstance,"GPSLatitudeRef", lat > 0 ?"N" :"S");
setAttribute.invoke(exInstance,"GPSLongitude", convertDegToExifRational(lon));
setAttribute.invoke(exInstance,"GPSLongitudeRef", lon > 0?"E" : "W");
if(!Double.isNaN(rot)){
setAttribute.invoke(exInstance,"GPSImgDirectionRef", "T");
String rotString = (int) (rot * 100.0) + "/100";